home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / comm / comstack.sit / Commstack_2.6.bin / Commstack 2.6 / card_5580.txt < prev    next >
Encoding:
Text File  |  1989-12-21  |  17.5 KB  |  765 lines

  1. -- card: 5580 from stack: in.6
  2. -- bmap block id: 3766
  3. -- flags: 0000
  4. -- background id: 2598
  5. -- name: card3
  6. ----- HyperTalk script -----
  7. on opencard
  8.   get first word of card field "Node Type" of card "config"
  9.   if it is "unix" then
  10.     show card button id 12
  11.   else
  12.     hide card button id 12
  13.   end if
  14. end opencard
  15.  
  16. on checkend
  17.   set cursor to watch
  18.   get first word of card field "Node Type" of card "config"
  19.   if it is "unix" then
  20.     get offset("--More--",card field 1)
  21.   else
  22.     get offset("press RETURN",card field 1)
  23.   end if
  24.  
  25.   if it > 0 then
  26.     show card button id 9
  27.   else
  28.     hide card button id 9
  29.   end if
  30.  
  31. end checkend
  32.  
  33.  
  34.  
  35. -- part 1 (button)
  36. -- low flags: 00
  37. -- high flags: A004
  38. -- rect: left=5 top=36 right=52 bottom=109
  39. -- title width / last selected line: 0
  40. -- icon id / first selected line: 0 / 0
  41. -- text alignment: 1
  42. -- font id: 0
  43. -- text size: 12
  44. -- style flags: 0
  45. -- line height: 16
  46. -- part name: First
  47. ----- HyperTalk script -----
  48. on mouseup
  49.   set cursor to watch
  50.   global CommStorage
  51.   global MailNumber
  52.   visual effect wipe up
  53.   go card "card3"
  54.   put space into card field 1
  55.   put 1 into MailNumber
  56.   put "Current letter is " & MailNumber into card field "Usermessage"
  57.   openascii
  58.   get first word of card field "Node Type" of card "config"
  59.   put it into NodeType
  60.   if NodeType is "unix" then
  61.     writeascii numtochar(3)
  62.     put return & "& " into prompt
  63.     displayscreen "dis",prompt,"--more--"
  64.     put empty into card field 1
  65.   else
  66.     put "MAIL>" into prompt
  67.   end if
  68.   put empty into card field 1
  69.   writeascii numtochar(17) & MailNumber & return
  70.   displayscreen "dis",prompt,"--more--"
  71.   closeascii
  72.   checkend
  73. end mouseup
  74.  
  75.  
  76.  
  77. -- part 2 (button)
  78. -- low flags: 00
  79. -- high flags: A004
  80. -- rect: left=5 top=53 right=70 bottom=109
  81. -- title width / last selected line: 0
  82. -- icon id / first selected line: 0 / 0
  83. -- text alignment: 1
  84. -- font id: 0
  85. -- text size: 12
  86. -- style flags: 0
  87. -- line height: 16
  88. -- part name: Next
  89. ----- HyperTalk script -----
  90.  
  91. on mouseUp
  92.   set cursor to watch
  93.   global CommStorage
  94.   global MailNumber
  95.   global StringGot
  96.   visual effect wipe up
  97.   go card "card3"
  98.   put space into card field 1
  99.   put MailNumber+1 into MailNumber
  100.   if MailNumber < 1 then put 1 into MailNumber
  101.   put "Current letter is " & MailNumber into card field "UserMessage"
  102.   openascii
  103.   get first word of card field "Node Type" of card "config"
  104.   put it into NodeType
  105.   if NodeType is "unix" then
  106.     writeascii numtochar(3)
  107.     put return & "& " into prompt
  108.     displayscreen "dis",prompt
  109.     put empty into card field 1
  110.   else
  111.     put "MAIL>" into prompt
  112.   end if
  113.  
  114.   writeascii numtochar(17) & MailNumber & return
  115.   displayscreen "dis",prompt,"--more--"
  116.   if "invalid message number" is in card field 1 then
  117.     --if StringGot is true then
  118.     answer "** Kirjett├ñ numero " & MailNumber & " ei ole olemassa."
  119.     put 1 into MailNumber
  120.   end if
  121.   closeascii
  122.   checkend
  123. end mouseUp
  124.  
  125.  
  126.  
  127.  
  128.  
  129. -- part 3 (button)
  130. -- low flags: 00
  131. -- high flags: A004
  132. -- rect: left=110 top=53 right=70 bottom=214
  133. -- title width / last selected line: 0
  134. -- icon id / first selected line: 0 / 0
  135. -- text alignment: 1
  136. -- font id: 0
  137. -- text size: 12
  138. -- style flags: 0
  139. -- line height: 16
  140. -- part name: Previous
  141. ----- HyperTalk script -----
  142.  
  143. on mouseUp
  144.   set cursor to watch
  145.   global CommStorage
  146.   global MailNumber
  147.   global StringGot
  148.   go card "card3"
  149.   put space into card field 1
  150.   put MailNumber-1 into MailNumber
  151.   if MailNumber < 1 then put 1 into MailNumber
  152.   put "Current letter is " & MailNumber into card field "UserMessage"
  153.   openascii
  154.   get first word of card field "Node Type" of card "config"
  155.   put it into NodeType
  156.   if NodeType is "unix" then
  157.     writeascii numtochar(3)
  158.     put return & "& " into prompt
  159.     displayscreen "dis",prompt
  160.     put empty into card field 1
  161.   else
  162.     put "MAIL>" into prompt
  163.   end if
  164.  
  165.   writeascii numtochar(17) & MailNumber & return
  166.   displayscreen "dis",prompt
  167.   if "invalid message number" is in card field 1 then
  168.     --if StringGot is true then
  169.     answer "** Kirjett├ñ numero " & MailNumber & " ei ole olemassa."
  170.     put 1 into MailNumber
  171.   end if
  172.   closeascii
  173.   checkend
  174. end mouseUp
  175.  
  176.  
  177.  
  178.  
  179.  
  180. -- part 4 (field)
  181. -- low flags: 02
  182. -- high flags: 2007
  183. -- rect: left=3 top=90 right=338 bottom=507
  184. -- title width / last selected line: 0
  185. -- icon id / first selected line: 0 / 0
  186. -- text alignment: 0
  187. -- font id: 4
  188. -- text size: 9
  189. -- style flags: 0
  190. -- line height: 12
  191. -- part name: MailDir
  192.  
  193.  
  194. -- part 5 (field)
  195. -- low flags: 00
  196. -- high flags: 0001
  197. -- rect: left=216 top=330 right=342 bottom=296
  198. -- title width / last selected line: 0
  199. -- icon id / first selected line: 0 / 0
  200. -- text alignment: 1
  201. -- font id: 3
  202. -- text size: 9
  203. -- style flags: 0
  204. -- line height: 12
  205. -- part name: LineCount
  206.  
  207.  
  208. -- part 6 (field)
  209. -- low flags: 01
  210. -- high flags: 0001
  211. -- rect: left=296 top=330 right=342 bottom=409
  212. -- title width / last selected line: 0
  213. -- icon id / first selected line: 0 / 0
  214. -- text alignment: 1
  215. -- font id: 3
  216. -- text size: 9
  217. -- style flags: 0
  218. -- line height: 12
  219. -- part name: UserMessage
  220.  
  221.  
  222. -- part 7 (button)
  223. -- low flags: 00
  224. -- high flags: A004
  225. -- rect: left=110 top=71 right=89 bottom=251
  226. -- title width / last selected line: 0
  227. -- icon id / first selected line: 0 / 0
  228. -- text alignment: 1
  229. -- font id: 0
  230. -- text size: 12
  231. -- style flags: 0
  232. -- line height: 16
  233. -- part name: Get letter number ...
  234. ----- HyperTalk script -----
  235. on mouseup
  236.   set cursor to watch
  237.   global CommStorage
  238.   global MailNumber
  239.   global StringGot
  240.   go card "card3"
  241.   put space into card field 1
  242.   ask "Give number of the letter you want to see" with MailNumber
  243.   put it into MailNumber
  244.   put "Current letter is " & MailNumber into card field "UserMessage"
  245.   openascii
  246.   get first word of card field "Node Type" of card "config"
  247.   put it into NodeType
  248.   if NodeType is "unix" then
  249.     writeascii numtochar(3)
  250.     put return & "& " into prompt
  251.     displayscreen "dis",prompt
  252.     put empty into card field 1
  253.   else
  254.     put "MAIL>" into prompt
  255.   end if
  256.  
  257.   writeascii numtochar(17) & MailNumber & return
  258.   displayscreen "dis",prompt,"--more--"
  259.   if "invalid message number" is in card field 1 then
  260.     -- if StringGot is true then
  261.     answer "** Kirjett├ñ numero " & MailNumber & " ei ole olemassa."
  262.     put 1 into MailNumber
  263.   end if
  264.   closeascii
  265.   checkend
  266. end mouseup
  267.  
  268.  
  269.  
  270. -- part 8 (button)
  271. -- low flags: 00
  272. -- high flags: A004
  273. -- rect: left=318 top=144 right=161 bottom=488
  274. -- title width / last selected line: 0
  275. -- icon id / first selected line: 0 / 0
  276. -- text alignment: 1
  277. -- font id: 0
  278. -- text size: 12
  279. -- style flags: 0
  280. -- line height: 16
  281. -- part name: Change [{| to Çüà
  282. ----- HyperTalk script -----
  283. on mouseUp
  284.   set cursor to watch
  285.   set cursor to watch
  286.   replace "{","├ñ"
  287.   replace "}","├Ñ"
  288.   replace "|","├╢"
  289.   replace "\","├û"
  290.   replace "[","├ä"
  291.   replace "]","├à"
  292. end mouseUp
  293.  
  294.  
  295.  
  296. -- part 9 (button)
  297. -- low flags: 00
  298. -- high flags: A004
  299. -- rect: left=5 top=71 right=89 bottom=109
  300. -- title width / last selected line: 0
  301. -- icon id / first selected line: 0 / 0
  302. -- text alignment: 1
  303. -- font id: 0
  304. -- text size: 12
  305. -- style flags: 0
  306. -- line height: 16
  307. -- part name: Next page
  308. ----- HyperTalk script -----
  309. on mouseup
  310.   global CommSpeed,CommPrompt, NodeName, NodeType, Username
  311.   openascii
  312.  
  313.   if NodeType is "unix" then
  314.     writeascii(" ")
  315.     put return & "& " into prompt
  316.   else
  317.     writeascii(return)
  318.     put "MAIL>" into prompt
  319.   end if
  320.   put empty into card field 1
  321.   displayscreen "dis",prompt,"--more--"
  322.   -- put number of characters in card field 1
  323.   if number of characters in card field 1 < 3 then
  324.     put " *** Kirje loppu **** " into card field 1
  325.     --put "Tyhj├ñ se on"
  326.   end if
  327.  
  328.   closeascii
  329.   checkend
  330. end mouseup
  331.  
  332.  
  333.  
  334. -- part 10 (button)
  335. -- low flags: 00
  336. -- high flags: A004
  337. -- rect: left=268 top=36 right=53 bottom=394
  338. -- title width / last selected line: 0
  339. -- icon id / first selected line: 0 / 0
  340. -- text alignment: 1
  341. -- font id: 0
  342. -- text size: 12
  343. -- style flags: 0
  344. -- line height: 16
  345. -- part name: Letter directory
  346. ----- HyperTalk script -----
  347. on mouseup
  348.   global DirectoryGot
  349.   global CommStorage
  350.   openascii
  351.   get first word of card field "Node Type" of card "config"
  352.   put it into NodeType
  353.   if NodeType is "unix" then
  354.     writeascii numtochar(3)
  355.   end if
  356.  
  357.   closeascii
  358.   MailDirectory
  359.   put true into DirectoryGot
  360. end mouseup
  361.  
  362.  
  363.  
  364. -- part 11 (button)
  365. -- low flags: 00
  366. -- high flags: A002
  367. -- rect: left=458 top=36 right=79 bottom=512
  368. -- title width / last selected line: 0
  369. -- icon id / first selected line: 14953 / 14953
  370. -- text alignment: 1
  371. -- font id: 0
  372. -- text size: 12
  373. -- style flags: 0
  374. -- line height: 16
  375. -- part name: Exit
  376. ----- HyperTalk script -----
  377. on mouseUp
  378.   global CommStore
  379.   global CommSpeed,CommPrompt, NodeName, NodeType, Username
  380.   openascii
  381.   go card "card1"
  382.   put empty into card field 1
  383.   put NodeType into NodeType
  384.   writeascii "q" & return
  385.   displayscreen "dis",CommPrompt
  386.   put empty into card field 1
  387.   closeascii
  388.  
  389. end mouseUp
  390.  
  391.  
  392.  
  393. -- part 12 (button)
  394. -- low flags: 00
  395. -- high flags: A002
  396. -- rect: left=397 top=36 right=79 bottom=459
  397. -- title width / last selected line: 0
  398. -- icon id / first selected line: 14244 / 14244
  399. -- text alignment: 1
  400. -- font id: 0
  401. -- text size: 12
  402. -- style flags: 0
  403. -- line height: 16
  404. -- part name:  Cancel read
  405. ----- HyperTalk script -----
  406. on mouseUp
  407.   openascii
  408.   go card "card1"
  409.   get first word of card field "Node Type" of card "config"
  410.   put it into NodeType
  411.   if NodeType is "unix" then
  412.     writeascii numtochar(3)
  413.  
  414.   end if
  415.  
  416.   put space into card field 1
  417.   if NodeType is "unix" then
  418.     writeascii ("x" & return)
  419.   else
  420.     writeascii numtochar(25)
  421.   end if
  422.  
  423.   displayscreen "flush"
  424.   put space into card field 1
  425.   closeascii
  426.  
  427. end mouseUp
  428.  
  429.  
  430.  
  431. -- part 13 (button)
  432. -- low flags: 00
  433. -- high flags: A004
  434. -- rect: left=250 top=71 right=89 bottom=396
  435. -- title width / last selected line: 0
  436. -- icon id / first selected line: 0 / 0
  437. -- text alignment: 1
  438. -- font id: 0
  439. -- text size: 12
  440. -- style flags: 0
  441. -- line height: 16
  442. -- part name: Delete this letter
  443. ----- HyperTalk script -----
  444. on mouseup
  445.   global CommStorage
  446.   global MailNumber
  447.   global DirectoryGot
  448.   openascii
  449.   get first word of card field "Node Type" of card "config"
  450.   put it into NodeType
  451.   if NodeType is "unix" then
  452.     writeascii numtochar(3)
  453.     put return & "& " into prompt
  454.     displayscreen "dis",prompt
  455.     put empty into card field 1
  456.   else
  457.     put "MAIL> " into prompt
  458.   end if
  459.  
  460.   writeascii numtochar(17) & "d" & return
  461.   put false into DirectoryGot
  462.   put space into card field 1
  463.   displayscreen "dis",prompt,"--more--"
  464.   closeascii
  465.   checkend
  466.   click at the location of card button id 2
  467. end mouseup
  468.  
  469.  
  470.  
  471. -- part 14 (button)
  472. -- low flags: 00
  473. -- high flags: A004
  474. -- rect: left=214 top=53 right=70 bottom=349
  475. -- title width / last selected line: 0
  476. -- icon id / first selected line: 0 / 0
  477. -- text alignment: 1
  478. -- font id: 0
  479. -- text size: 12
  480. -- style flags: 0
  481. -- line height: 16
  482. -- part name: Reply to this letter
  483. ----- HyperTalk script -----
  484. on mouseup
  485.   global CommSpeed,CommPrompt, NodeName, NodeType, Username
  486.   global SendMode
  487.   put "Reply" into SendMode
  488.   go card "card2"
  489.   openascii
  490.   if NodeType is "unix" then
  491.     writeascii numtochar(3)
  492.   end if
  493.   displayscreen "dis",return & "& "
  494.   writeascii (numtochar(17) & "r" & return)
  495.   put space into card field 1
  496.   displayscreen
  497.   delete first line of card field 1
  498.   get card field 1
  499.   put it into card field "UserMessage"
  500.   show card field "UserMessage"
  501.   put space into card field 1
  502.   closeascii
  503. end mouseup
  504.  
  505.  
  506.  
  507. -- part 15 (button)
  508. -- low flags: 00
  509. -- high flags: A004
  510. -- rect: left=318 top=109 right=126 bottom=488
  511. -- title width / last selected line: 0
  512. -- icon id / first selected line: 0 / 0
  513. -- text alignment: 1
  514. -- font id: 0
  515. -- text size: 12
  516. -- style flags: 0
  517. -- line height: 16
  518. -- part name: Send a letter
  519. ----- HyperTalk script -----
  520. on mouseUp
  521.   global SendMode
  522.   put "Forward" into SendMode
  523.   go card "card2"
  524.   openascii
  525.   get first word of card field "Node Type" of card "config"
  526.   put it into NodeType
  527.   if NodeType is "unix" then
  528.     --writeascii numtochar(3)
  529.     -- writeascii numtochar(17) & "m" & return
  530.   end if
  531.   displayscreen
  532.   -- delete first line of card field 1
  533.   -- get card field 1
  534.   -- put it into card field "UserMessage"
  535.   -- show card field "UserMessage"
  536.   -- put space into card field 1
  537.   hide card field "UserMessage"
  538.   closeascii
  539. end mouseUp
  540.  
  541.  
  542.  
  543. -- part 17 (button)
  544. -- low flags: 00
  545. -- high flags: A004
  546. -- rect: left=110 top=36 right=53 bottom=272
  547. -- title width / last selected line: 0
  548. -- icon id / first selected line: 0 / 0
  549. -- text alignment: 1
  550. -- font id: 0
  551. -- text size: 12
  552. -- style flags: 0
  553. -- line height: 16
  554. -- part name: Forward this letter
  555. ----- HyperTalk script -----
  556. on mouseUp
  557.   global SendMode
  558.   put "Forward" into SendMode
  559.   go card "card2"
  560.   openascii
  561.   put first word of card field "Node Type" of card "config" into NodeType
  562.   put first word of card field "Username" of card "Config" into Username
  563.   if NodeType is "unix" then
  564.     writeascii numtochar(3)
  565.     displayscreen "dis","&"
  566.     writeascii numtochar(17) & "s /tmp/MacForward." & Username & return
  567.     displayscreen "dis","&"
  568.     writeascii numtochar(26) & return
  569.     displayscreen "dis","%"
  570.     ask "Kenelle kirje pistet├ñ├ñn eteenp├ñin?" with "kallio"
  571.     writeascii "/usr/ucb/mail " & it & "< /tmp/MacForward." & Username & return
  572.     displayscreen "dis","%"
  573.     writeascii "\rm /tmp/MacForward." & Username & return
  574.     displayscreen "dis","%"
  575.     writeascii "fg" & return
  576.     displayscreen "dis","%"
  577.   else
  578.     writeascii "forward" & return
  579.     displayscreen "dis","TO:"
  580.     ask "Kenelle kirje pistet├ñ├ñn eteenp├ñin?" with "kallio"
  581.     writeascii it & return
  582.     displayscreen "dis","MAIL>"
  583.   end if
  584.   -- delete first line of card field 1
  585.   -- get card field 1
  586.   -- put it into card field "UserMessage"
  587.   -- show card field "UserMessage"
  588.   -- put space into card field 1
  589.   hide card field "UserMessage"
  590.   closeascii
  591.   go card "card3"
  592. end mouseUp
  593.  
  594.  
  595. -- part 18 (button)
  596. -- low flags: 00
  597. -- high flags: A004
  598. -- rect: left=383 top=162 right=180 bottom=489
  599. -- title width / last selected line: 0
  600. -- icon id / first selected line: 0 / 0
  601. -- text alignment: 1
  602. -- font id: 0
  603. -- text size: 12
  604. -- style flags: 0
  605. -- line height: 16
  606. -- part name: Any Command
  607. ----- HyperTalk script -----
  608. on mouseUp
  609.   global CommStorage
  610.   global CommSpeed,CommPrompt, NodeName, NodeType, Username
  611.   openascii
  612.   ask "Komento"
  613.   writeascii numtochar(17) & it & return
  614.   put space into card field 1
  615.   displayscreen "dis",CommPrompt
  616.   closeascii
  617. end mouseUp
  618.  
  619.  
  620.  
  621. -- part 19 (button)
  622. -- low flags: 00
  623. -- high flags: A004
  624. -- rect: left=307 top=127 right=143 bottom=488
  625. -- title width / last selected line: 0
  626. -- icon id / first selected line: 0 / 0
  627. -- text alignment: 1
  628. -- font id: 0
  629. -- text size: 12
  630. -- style flags: 0
  631. -- line height: 16
  632. -- part name: Save this into host disc
  633. ----- HyperTalk script -----
  634. on mouseup
  635.   global CommSpeed,CommPrompt, NodeName, NodeType, Username
  636.   --global FolderName
  637.   put card field "FolderName" into FolderName
  638.   openascii
  639.   if NodeType is "unix" then
  640.     writeascii numtochar(3)
  641.   end if
  642.   ask "Anna kansion nimi. (Folder name.)" with FolderName
  643.   put it into FolderName
  644.   displayscreen "dis",return & "& "
  645.   writeascii (numtochar(17) & "s " & FolderName & return)
  646.   displayscreen "dis",return & "& "
  647.   closeascii
  648.   put FolderName into card field "FolderName"
  649. end mouseup
  650.  
  651.  
  652.  
  653. -- part 20 (field)
  654. -- low flags: 00
  655. -- high flags: 0002
  656. -- rect: left=311 top=3 right=16 bottom=498
  657. -- title width / last selected line: 0
  658. -- icon id / first selected line: 0 / 0
  659. -- text alignment: 1
  660. -- font id: 3
  661. -- text size: 9
  662. -- style flags: 0
  663. -- line height: 12
  664. -- part name: FolderName
  665.  
  666.  
  667. -- part 21 (button)
  668. -- low flags: 80
  669. -- high flags: A004
  670. -- rect: left=338 top=89 right=106 bottom=487
  671. -- title width / last selected line: 0
  672. -- icon id / first selected line: 0 / 0
  673. -- text alignment: 1
  674. -- font id: 0
  675. -- text size: 12
  676. -- style flags: 0
  677. -- line height: 16
  678. -- part name: Lisèè painonappeja
  679. ----- HyperTalk script -----
  680. on mouseUp
  681.   show card button id 8
  682.   show card button id 15
  683.   show card button id 18
  684.   show card button id 19
  685.   show card button id 22
  686.   show card button id 23
  687.   hide card button id 21
  688. end mouseUp
  689.  
  690.  
  691.  
  692. -- part 22 (button)
  693. -- low flags: 00
  694. -- high flags: A004
  695. -- rect: left=313 top=90 right=107 bottom=488
  696. -- title width / last selected line: 0
  697. -- icon id / first selected line: 0 / 0
  698. -- text alignment: 1
  699. -- font id: 0
  700. -- text size: 12
  701. -- style flags: 0
  702. -- line height: 16
  703. -- part name: Poista ylimèèrèiset napit
  704. ----- HyperTalk script -----
  705. on mouseUp
  706.   hide card button id 8
  707.   hide card button id 15
  708.   hide card button id 18
  709.   hide card button id 19
  710.   hide card button id 22
  711.   hide card button id 23
  712.   show card button id 21
  713. end mouseUp
  714.  
  715.  
  716.  
  717. -- part 23 (button)
  718. -- low flags: 00
  719. -- high flags: A004
  720. -- rect: left=328 top=182 right=200 bottom=489
  721. -- title width / last selected line: 0
  722. -- icon id / first selected line: 0 / 0
  723. -- text alignment: 1
  724. -- font id: 0
  725. -- text size: 12
  726. -- style flags: 0
  727. -- line height: 16
  728. -- part name: Poimi BINHEX mikrolle
  729. ----- HyperTalk script -----
  730. on mouseup
  731.   savebinhex return & "& "
  732.   -- NewsStateDef
  733. end mouseup
  734.  
  735.  
  736.  
  737. -- part contents for card part 6
  738. ----- text -----
  739. Current letter is 3
  740.  
  741. -- part contents for card part 5
  742. ----- text -----
  743. Lines 15
  744.  
  745. -- part contents for card part 20
  746. ----- text -----
  747. Zirkle.hqx
  748.  
  749. -- part contents for card part 4
  750. ----- text -----
  751.  
  752. ,pHK%+H%%!'!%T3Naae#CP$!r!F!$*BHEde#2f'#F)6'D53!!he#2h,#3!!@J0fb
  753. `Q3&!1&6*!eCa!*aJ'j+j"!&!!ji*!Yq*#J*J"L"b*SXj")8*!!VJ!1*T%&T"Q94
  754. C&I*j0lV3RJ&!#[9)!9DK!043RbX5&A!)"GC*%4!`#Ma4%,cJ&%C!"I2M!(FM!YS
  755. CS@83"*HC%MKJS!X3!-MJ&$I!!!2U$`"!"MPJ%#'kR)`*!!Zj!')!!&D`SL[L$3J
  756. *#iBT&k0j*ZVJ&%$!#[")%'5CP`&J$dj""!"J&3'!'+1j!!,!%e4*#9Da!$pU"MB
  757. +T5P5"NCJSVB""3#!T@,K5`K*"-D*$Uc*Mf3+KpJ`S*3hQKSJ!)CB"NaL&3aJPmV
  758. 3RJ*32aZ+!e@+($dU!)`"Kafk!-CJS!*L"I@)"pETQaVJS,BK!$1kSG33N!!)S3@
  759. 5Q4*ZJ*!!k$!r$D!,D4UTQdUR#PS3D`1FbL%!HZ#C3NSk8J!!6"#F!Q))5FS&9Z%
  760. !R[#EQbN!NZ#CK'#BI!!!(,#VZFUB(!#25US!Q4S!528`!m!@#C%j)U'SdCS3"B!
  761. (*)%3AC1Ce5UIl%!5YE%!a!!8E['(#D'Y$'!,*,%F$6!D#p-!hlS`$S#Fe3F!%b!
  762. +!S!1!J!),QB!!!:
  763. ---
  764.